nixos/tests/containers-imperative: fix on i686 (#46874)
Test failed on i686 in a sandbox because some packages required to build the nixos manual for the container were missing. Add them.
This commit is contained in:
parent
012682222f
commit
daf40ab165
@ -13,6 +13,7 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||||||
# XXX: Sandbox setup fails while trying to hardlink files from the host's
|
# XXX: Sandbox setup fails while trying to hardlink files from the host's
|
||||||
# store file system into the prepared chroot directory.
|
# store file system into the prepared chroot directory.
|
||||||
nix.useSandbox = false;
|
nix.useSandbox = false;
|
||||||
|
nix.binaryCaches = []; # don't try to access cache.nixos.org
|
||||||
|
|
||||||
virtualisation.writableStore = true;
|
virtualisation.writableStore = true;
|
||||||
virtualisation.memorySize = 1024;
|
virtualisation.memorySize = 1024;
|
||||||
@ -27,9 +28,10 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in [
|
in with pkgs; [
|
||||||
pkgs.stdenv pkgs.stdenvNoCC emptyContainer.config.containers.foo.path
|
stdenv stdenvNoCC emptyContainer.config.containers.foo.path
|
||||||
pkgs.libxslt
|
libxslt desktop-file-utils texinfo docbook5 libxml2
|
||||||
|
docbook_xsl_ns xorg.lndir documentation-highlighter
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user