mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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
1 changed files with 5 additions and 3 deletions
|
@ -13,6 +13,7 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||
# XXX: Sandbox setup fails while trying to hardlink files from the host's
|
||||
# store file system into the prepared chroot directory.
|
||||
nix.useSandbox = false;
|
||||
nix.binaryCaches = []; # don't try to access cache.nixos.org
|
||||
|
||||
virtualisation.writableStore = true;
|
||||
virtualisation.memorySize = 1024;
|
||||
|
@ -27,9 +28,10 @@ import ./make-test.nix ({ pkgs, ...} : {
|
|||
};
|
||||
};
|
||||
};
|
||||
in [
|
||||
pkgs.stdenv pkgs.stdenvNoCC emptyContainer.config.containers.foo.path
|
||||
pkgs.libxslt
|
||||
in with pkgs; [
|
||||
stdenv stdenvNoCC emptyContainer.config.containers.foo.path
|
||||
libxslt desktop-file-utils texinfo docbook5 libxml2
|
||||
docbook_xsl_ns xorg.lndir documentation-highlighter
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue