From 7c97a31684befa0cc98672e664ca1a88680d0534 Mon Sep 17 00:00:00 2001 From: Mariappan Ramasamy <1221719+nappairam@users.noreply.github.com> Date: Mon, 4 May 2026 22:34:16 +0800 Subject: [PATCH] ubootRock3C: enable strictDeps Added for fixing failing CI: nixpkgs-vet (NPV-164) buildUBoot does not enable strictDeps by default and the existing ubootRock* packages predate the rule, so the new ubootRock3C attribute trips the lint. Set strictDeps = true on the ubootRock3C derivation only to keep blast radius minimal. --- pkgs/misc/uboot/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index f4557ab8dd3e..00d3e68107a3 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -794,6 +794,7 @@ in ubootRock3C = buildUBoot { defconfig = "rock-3c-rk3566_defconfig"; extraMeta.platforms = [ "aarch64-linux" ]; + strictDeps = true; env = { BL31 = "${armTrustedFirmwareRK3568}/bl31.elf"; ROCKCHIP_TPL = rkbin.TPL_RK3566;