uboot: missing perl dependency

Depending on the configuration, perl might be required. Perl is used to
build the OID database, which is required for EFI secureboot (at
least).
This commit is contained in:
Arthur Gautier 2024-08-21 17:05:30 +00:00
parent 44f636f8cb
commit 06c8010755

View File

@ -17,6 +17,7 @@
, swig
, which
, python3
, perl
, armTrustedFirmwareAllwinner
, armTrustedFirmwareAllwinnerH6
, armTrustedFirmwareAllwinnerH616
@ -88,6 +89,7 @@ let
]))
swig
which # for scripts/dtc-version.sh
perl # for oid build (secureboot)
] ++ lib.optionals (!crossTools) toolsDeps;
depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = lib.optionals crossTools toolsDeps;