guix-commits
[Top][All Lists]
Advanced

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

15/15: gnu: u-boot: Use plain list of inputs.


From: guix-commits
Subject: 15/15: gnu: u-boot: Use plain list of inputs.
Date: Sat, 10 Dec 2022 08:59:05 -0500 (EST)

rekado pushed a commit to branch wip-python-graphviz
in repository guix.

commit 3120a6c4676a418a625dd4c5c56387390b7a0b47
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Dec 8 23:08:05 2022 +0100

    gnu: u-boot: Use plain list of inputs.
    
    * gnu/packages/bootloaders.scm (u-boot)[native-inputs]: Drop input labels.
---
 gnu/packages/bootloaders.scm | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 9fdcee01bb..0917095627 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -647,20 +647,20 @@ tree binary files.  These are board description files 
used by Linux and BSD.")
                 "1y5x8vxdgsqdqlsvq01mn8lmw53fqairkhvhhjx83hjva0m4id2h"))))
     (build-system  gnu-build-system)
     (native-inputs
-     `(("bc" ,bc)
-       ("bison" ,bison)
-       ("dtc" ,dtc)
-       ("gnutls" ,gnutls)
-       ("flex" ,flex)
-       ("lz4" ,lz4)
-       ("tinfo" ,ncurses/tinfo)
-       ("perl" ,perl)
-       ("python" ,python)
-       ("python-coverage" ,python-coverage)
-       ("python-pycryptodomex" ,python-pycryptodomex)
-       ("python-pytest" ,python-pytest)
-       ("swig" ,swig)
-       ("libuuid" ,util-linux "lib")))
+     (list bc
+           bison
+           dtc
+           gnutls
+           flex
+           lz4
+           ncurses/tinfo
+           perl
+           python
+           python-coverage
+           python-pycryptodomex
+           python-pytest
+           swig
+           (list util-linux "lib")))
     (home-page "https://www.denx.de/wiki/U-Boot/";)
     (synopsis "ARM bootloader")
     (description "U-Boot is a bootloader used mostly for ARM boards.  It



reply via email to

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