linux: move hexdump to nativeBuildInputs

Trying to build vmlinuz.efi natively on aarch64 fails to find hexdump.
This was introduced in #277975. Moving hexdump to nativeBuildInputs
fixes the build.
This commit is contained in:
Franz Pletz 2024-07-03 13:45:34 +02:00
parent 3b25e5329a
commit 37007db77c
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -121,7 +121,6 @@ let
pahole
perl
elfutils
hexdump
# module makefiles often run uname commands to find out the kernel version
(buildPackages.deterministic-uname.override { inherit modDirVersion; })
]
@ -158,6 +157,7 @@ let
zstd
python3Minimal
kmod
hexdump
] ++ optional needsUbootTools ubootTools
++ optionals (lib.versionAtLeast version "5.2") [ cpio pahole zlib ]
++ optionals withRust [ rustc rust-bindgen ];