summaryrefslogtreecommitdiffstats
path: root/nixos/modules/installer/netboot/netboot.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-03-03 19:20:35 +0100
committeraszlig <aszlig@nix.build>2018-03-03 19:31:19 +0100
commit0811e7f60eb0c729d75e7fabd854b74629f01e6b (patch)
tree99c6fc0a72e820443ec267fcda9b90dc9b10240a /nixos/modules/installer/netboot/netboot.nix
parente7946b0c8f2506dc0bdae848a9604bf5f717b7ec (diff)
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
Diffstat (limited to 'nixos/modules/installer/netboot/netboot.nix')
-rw-r--r--nixos/modules/installer/netboot/netboot.nix2
1 files changed, 1 insertions, 1 deletions
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;
};