1
0
Fork 0
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:
Linus Heckemann 2023-01-08 14:38:34 +01:00
parent d644b45615
commit c83a8174fd
2 changed files with 9 additions and 9 deletions

View file

@ -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 }: ''