[PATCH] release/update.nix: fix import of efi
import does not pass through custom configuration options. Fixes: 49f33a1 ("release: Create directory with system update") Signed-off-by: Alyssa Ross <hi@alyssa.is> --- release/update.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/update.nix b/release/update.nix index 18a91ac..f6e7772 100644 --- a/release/update.nix +++ b/release/update.nix @@ -6,7 +6,7 @@ import ../lib/call-package.nix ( { callSpectrumPackage, config, runCommand, stdenv }: let - efi = import ../host/efi.nix {}; + efi = callSpectrumPackage ../host/efi.nix {}; in runCommand "spectrum-update-directory" { __structuredAttrs = true; base-commit: 6ceeb9b236cc50d2bba90068533ca1b7ff229c8b -- 2.51.0
On 12/15/25 07:26, Alyssa Ross wrote:
import does not pass through custom configuration options.
Fixes: 49f33a1 ("release: Create directory with system update") Signed-off-by: Alyssa Ross <hi@alyssa.is> --- release/update.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/release/update.nix b/release/update.nix index 18a91ac..f6e7772 100644 --- a/release/update.nix +++ b/release/update.nix @@ -6,7 +6,7 @@ import ../lib/call-package.nix ( { callSpectrumPackage, config, runCommand, stdenv }:
let - efi = import ../host/efi.nix {}; + efi = callSpectrumPackage ../host/efi.nix {}; in runCommand "spectrum-update-directory" { __structuredAttrs = true;
base-commit: 6ceeb9b236cc50d2bba90068533ca1b7ff229c8b
Clearly an oops in my commit, so: Reviewed-by: Demi Marie Obenour <demiobenour@gmail.com> -- Sincerely, Demi Marie Obenour (she/her/hers)
This patch has been committed as 65cb6209040be65294e7a0dec281cb11d26a8ee2, which can be viewed online at https://spectrum-os.org/git/spectrum/commit/?id=65cb6209040be65294e7a0dec281.... This is an automated message. Send comments/questions/requests to: Alyssa Ross <hi@alyssa.is>
participants (3)
-
Alyssa Ross -
Alyssa Ross -
Demi Marie Obenour