From 0811e7f60eb0c729d75e7fabd854b74629f01e6b Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 3 Mar 2018 19:20:35 +0100 Subject: [PATCH] nixos/netboot: Fix evaluation error The function arguments for make-squashfs.nix have changed in df117acab7bf345500ffada26c240c9f815b7c21, so we need to change them here as well. The boot.netboot NixOS VM test now succeeds again. Signed-off-by: aszlig Cc: @edolstra --- nixos/modules/installer/netboot/netboot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix index 52239b619126..a4eda3c52dce 100644 --- a/nixos/modules/installer/netboot/netboot.nix +++ b/nixos/modules/installer/netboot/netboot.nix @@ -67,7 +67,7 @@ with lib; # Create the squashfs image that contains the Nix store. system.build.squashfsStore = import ../../../lib/make-squashfs.nix { - inherit (pkgs) stdenv squashfsTools perl pathsFromGraph; + inherit (pkgs) stdenv squashfsTools closureInfo; storeContents = config.netboot.storeContents; };