diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/efi.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/efi.scm')
-rw-r--r-- | gnu/packages/efi.scm | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/gnu/packages/efi.scm b/gnu/packages/efi.scm index 8bbd873435..4625538d26 100644 --- a/gnu/packages/efi.scm +++ b/gnu/packages/efi.scm @@ -143,12 +143,12 @@ information.") (setenv "CC" "gcc") #t))))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("bash" ,bash) - ("help2man" ,help2man) - ("pkg-config" ,pkg-config) - ("util-linux" ,util-linux))) ; getopt + (list autoconf + automake + bash + help2man + pkg-config + util-linux)) ; getopt (inputs `(("gnu-efi" ,gnu-efi) ("libuuid" ,util-linux "lib") @@ -202,13 +202,9 @@ information.") #t)) (delete 'configure)))) (native-inputs - `(("help2man" ,help2man) - ("perl" ,perl) - ("perl-file-slurp" ,perl-file-slurp) - ("sbsigntools" ,sbsigntools))) + (list help2man perl perl-file-slurp sbsigntools)) (inputs - `(("gnu-efi" ,gnu-efi) - ("openssl" ,openssl))) + (list gnu-efi openssl)) (synopsis "EFI tools (key management, variable management)") (description "This package provides EFI tools for EFI key management and EFI variable management.") @@ -257,7 +253,7 @@ and EFI variable management.") "/libexec")) #t))))) (inputs - `(("gnu-efi" ,gnu-efi))) + (list gnu-efi)) (synopsis "Minimal Linux loader for UEFI") (description "This package provides a minimal Linux loader as an UEFI program.") |