From d69a134a1d7cec9339e93fec6d9d5c839931c147 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Sat, 10 Jan 2026 17:51:08 -0800 Subject: [PATCH] coreboot-toolchain: fix building src FOD At some point, this FOD failed to build because we have `allowedRequisites = []`, but the failure mentions that the FOD has a requisite of itself. Nix already enforces that FODs don't reference any store paths, so no need for this really. --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index 403f8601a2f6..5fc88bc6407f 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -38,7 +38,6 @@ let PATH=${lib.makeBinPath [ getopt ]}:$PATH ${stdenv.shell} $out/util/crossgcc/buildgcc -W > $out/.crossgcc_version rm -rf $out/.git ''; - allowedRequisites = [ ]; }; archives = ./stable.nix;