From 06c801075527868dd888dc89cd91e1145f76ab57 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Wed, 21 Aug 2024 17:05:30 +0000 Subject: [PATCH] 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). --- pkgs/misc/uboot/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index 295cb525a646..4105eccd6243 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -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;