From 245e956157be20a02a513fa11cc2be0cdb879c81 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 15 Dec 2015 19:36:30 +0100 Subject: lib/call-machine: Fix evaluation of ISO images Regression introduced by 8c1b7661ae7801233df2ef5cacb07c7382d74fdd. We now have an "eval" attribute, so we shouldn't try to reference or shadow it. Signed-off-by: aszlig --- lib/call-machine.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/call-machine.nix b/lib/call-machine.nix index 6061113f..30ef8bdf 100644 --- a/lib/call-machine.nix +++ b/lib/call-machine.nix @@ -17,7 +17,7 @@ let ''; wrapIso = { config, pkgs, lib, ... }@attrs: let patchedEval = (import patchedModule attrs); - patchedEvalcfg = eval.config or {}; + patchedEvalcfg = patchedEval.config or {}; bootcfg = patchedEvalcfg.boot or {}; fscfg = patchedEvalcfg.fileSystems or {}; in { -- cgit 1.4.1