mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
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:
parent
44f636f8cb
commit
06c8010755
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user