[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/13: gnu: make-u-boot-sunxi64-package: Use gexps and fix build.
From: |
guix-commits |
Subject: |
08/13: gnu: make-u-boot-sunxi64-package: Use gexps and fix build. |
Date: |
Wed, 18 Jan 2023 21:08:32 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 126e07a28e8b10b071868ac0c9bad736f674c74e
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Dec 20 11:19:56 2022 -0500
gnu: make-u-boot-sunxi64-package: Use gexps and fix build.
* gnu/packages/bootloaders.scm (make-u-boot-sunxi64-package)
[native-inputs]: Turn into...
[inputs]: ... this.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/bootloaders.scm | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 624a832802..53e6557ac7 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1001,17 +1001,13 @@ removed so that it fits within common partitioning
schemes.")))
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'set-environment
- (lambda* (#:key native-inputs inputs #:allow-other-keys)
- (let ((bl31
- (string-append
- (assoc-ref (or native-inputs inputs) "firmware")
- "/bl31.bin")))
- (setenv "BL31" bl31))))))))
- (native-inputs
- `(("firmware" ,arm-trusted-firmware-sun50i-a64)
- ,@(package-native-inputs base))))))
+ #~(modify-phases #$phases
+ (add-after 'unpack 'set-environment
+ (lambda* (#:key native-inputs inputs #:allow-other-keys)
+ (setenv "BL31" (search-input-file inputs "bl31.bin"))))))))
+ (inputs
+ (modify-inputs (package-inputs base)
+ (append arm-trusted-firmware-sun50i-a64))))))
(define-public u-boot-pine64-plus
(make-u-boot-sunxi64-package "pine64_plus" "aarch64-linux-gnu"))
- 05/13: gnu: make-u-boot-package: Allow disabling cross-compilation., (continued)
- 05/13: gnu: make-u-boot-package: Allow disabling cross-compilation., guix-commits, 2023/01/18
- 03/13: gnu: u-boot: Reduce the number of native inputs., guix-commits, 2023/01/18
- 06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps., guix-commits, 2023/01/18
- 11/13: gnu: u-boot-rockpro64-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 12/13: gnu: make-arm-trusted-firmware: Simplify build., guix-commits, 2023/01/18
- 13/13: gnu: u-boot-puma-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 04/13: gnu: make-uboot-package: Simplify build., guix-commits, 2023/01/18
- 01/13: gnu: make-u-boot-package: Add a u-boot argument and use gexps., guix-commits, 2023/01/18
- 02/13: gnu: make-u-boot-package: Install .imx files., guix-commits, 2023/01/18
- 07/13: gnu: u-boot-firefly-rk3399: Use gexps and fix build., guix-commits, 2023/01/18
- 08/13: gnu: make-u-boot-sunxi64-package: Use gexps and fix build.,
guix-commits <=
- 09/13: gnu: u-boot-rock64-rk3328: Use gexps and fix build., guix-commits, 2023/01/18
- 10/13: gnu: u-boot-sifive-unmatched: Use gexps and remove inputs labels., guix-commits, 2023/01/18