guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: dtc: Move native-inputs and inputs after arguments.


From: guix-commits
Subject: 01/03: gnu: dtc: Move native-inputs and inputs after arguments.
Date: Tue, 3 Jan 2023 16:05:31 -0500 (EST)

apteryx pushed a commit to branch master
in repository guix.

commit ec3c37d73327c49644656e66e922edf95bee8719
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Jan 1 12:54:22 2023 -0500

    gnu: dtc: Move native-inputs and inputs after arguments.
    
    * gnu/packages/bootloaders.scm (dtc) [native-inputs, inputs]: Move after the
    arguments field, per convention.
---
 gnu/packages/bootloaders.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index e3a63882e9..c93c27e3e5 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -573,18 +573,6 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is 
also the case for
                (base32
                 "0xm38h31jb29xfh2sfyk48d8wdfq4b8lmb412zx9vjr35izjb9iq"))))
     (build-system gnu-build-system)
-    (native-inputs
-     (append
-      (list bison
-            flex
-            libyaml
-            pkg-config
-            swig)
-      (if (member (%current-system) (package-supported-systems valgrind))
-          (list valgrind)
-          '())))
-    (inputs
-     (list python))
     (arguments
      `(#:make-flags
        (list (string-append "CC=" ,(cc-for-target))
@@ -605,6 +593,18 @@ The SUBDIR argument defaults to \"efi/Guix\", as it is 
also the case for
                (("pkg-config")
                 ,(pkg-config-for-target)))))
          (delete 'configure))))         ; no configure script
+    (native-inputs
+     (append
+      (list bison
+            flex
+            libyaml
+            pkg-config
+            swig)
+      (if (member (%current-system) (package-supported-systems valgrind))
+          (list valgrind)
+          '())))
+    (inputs
+     (list python))
     (home-page "https://www.devicetree.org";)
     (synopsis "Compiles device tree source files")
     (description "@command{dtc} compiles



reply via email to

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