mirror of
https://github.com/NixOS/nix
synced 2025-07-07 14:21:48 +02:00
tests: fix for nixpkgs 22.11
runCommand now uses stdenvNoCC by default, so that needs to be included instead of the regular stdenv.
This commit is contained in:
parent
d644b45615
commit
c83a8174fd
2 changed files with 9 additions and 9 deletions
|
@ -15,7 +15,7 @@ makeTest {
|
|||
{ virtualisation.writableStore = true;
|
||||
nix.settings.substituters = lib.mkForce [ ];
|
||||
nix.nixPath = [ "nixpkgs=${lib.cleanSource pkgs.path}" ];
|
||||
virtualisation.additionalPaths = [ pkgs.stdenv pkgs.pkgsi686Linux.stdenv ];
|
||||
virtualisation.additionalPaths = [ pkgs.stdenvNoCC pkgs.pkgsi686Linux.stdenvNoCC ];
|
||||
};
|
||||
|
||||
testScript = { nodes }: ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue