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 <aszlig@nix.build>
Cc: @edolstra

aszlig 0811e7f6 e7946b0c

+1 -1
+1 -1
nixos/modules/installer/netboot/netboot.nix
··· 67 67 68 68 # Create the squashfs image that contains the Nix store. 69 69 system.build.squashfsStore = import ../../../lib/make-squashfs.nix { 70 - inherit (pkgs) stdenv squashfsTools perl pathsFromGraph; 70 + inherit (pkgs) stdenv squashfsTools closureInfo; 71 71 storeContents = config.netboot.storeContents; 72 72 }; 73 73