From d7913883049ca2fc2949d5ccefef2f8d61dd802b Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Sun, 9 Apr 2023 19:50:04 -0700 Subject: [PATCH] src/coreboot: put expose fmap in passthru This commit exposes the `fmap` (flash chip partition table) used to build the coreboot image as the `passthru.fmap` attribute so it can be referenced from other expressions. --- src/coreboot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreboot/default.nix b/src/coreboot/default.nix index 8dad1d2..85a3d05 100644 --- a/src/coreboot/default.nix +++ b/src/coreboot/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { pname = "coreboot"; inherit version; - passthru = { inherit src; }; + passthru = { inherit src fmap; }; inherit src; patches = let inherit (nixpkgsOnBuildForBuild) fetchpatch; in [