guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexp


From: guix-commits
Subject: 06/13: gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps.
Date: Wed, 18 Jan 2023 21:08:32 -0500 (EST)

apteryx pushed a commit to branch master
in repository guix.

commit c9c195936d128465030bc05f8c319367602c93b5
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Dec 12 22:56:02 2022 -0500

    gnu: u-boot-pinebook-pro-rk3399: Remove input labels and use gexps.
    
    * gnu/packages/bootloaders.scm (u-boot-pinebook-pro-rk3399) [arguments]:
    Remove input labels.
    [native-inputs]: Use modify-inputs and turn into...
    [inputs]: ... this.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/bootloaders.scm | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 290d832a83..f3b3c91c47 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1221,17 +1221,16 @@ BOOT_TARGET_NVME(func) \\
       (arguments
        (substitute-keyword-arguments (package-arguments base)
          ((#:phases phases)
-          `(modify-phases ,phases
-             (add-after 'unpack 'set-environment
-               (lambda* (#:key inputs #:allow-other-keys)
-                 (setenv "BL31"
-                         (search-input-file inputs "/bl31.elf"))))
-             ;; Phases do not succeed on the bl31 ELF.
-             (delete 'strip)
-             (delete 'validate-runpath)))))
-      (native-inputs
-       `(("firmware" ,arm-trusted-firmware-rk3399)
-         ,@(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.elf"))))
+              ;; Phases do not succeed on the bl31 ELF.
+              (delete 'strip)
+              (delete 'validate-runpath)))))
+      (inputs
+       (modify-inputs (package-inputs base)
+         (append arm-trusted-firmware-rk3399))))))
 
 (define*-public (make-u-boot-bin-package u-boot-package
                                          #:key



reply via email to

[Prev in Thread] Current Thread [Next in Thread]