diff options
author | Linus Heckemann <git@sphalerite.org> | 2023-01-08 14:38:34 +0100 |
---|---|---|
committer | Linus Heckemann <git@sphalerite.org> | 2023-01-08 14:38:34 +0100 |
commit | c83a8174fdfd7e7f7c04584a02a0160403fb047d (patch) | |
tree | d90cfd2d0a190ac1b64fa5be98aa228846ca13fb /tests/setuid.nix | |
parent | d644b456159b0335039666f6620a9f3d8129a83a (diff) |
tests: fix for nixpkgs 22.11
runCommand now uses stdenvNoCC by default, so that needs to be
included instead of the regular stdenv.
Diffstat (limited to 'tests/setuid.nix')
-rw-r--r-- | tests/setuid.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/setuid.nix b/tests/setuid.nix index 82efd6d54..6784615e4 100644 --- a/tests/setuid.nix +++ b/tests/setuid.nix @@ -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 }: '' |