about summary refs log tree commit diff
path: root/nixos/tests/docker-tools-cross.nix
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-04-05 10:18:44 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-04-05 10:19:40 +1000
commit76636e00998bd095c083b107ec76a51b3c17aab1 (patch)
treedc11a951c8bbbd3e69e40b26ef88892233863967 /nixos/tests/docker-tools-cross.nix
parent1b9fa5ade6c180b6976aa738fa1b826b607c4a74 (diff)
dockerTools: pkgs.system -> pkgs.stdenv.hostPlatform.system
`pkgs.system` is an alias
Diffstat (limited to 'nixos/tests/docker-tools-cross.nix')
-rw-r--r--nixos/tests/docker-tools-cross.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/docker-tools-cross.nix b/nixos/tests/docker-tools-cross.nix
index a7a6a31475d67..8791ec2581279 100644
--- a/nixos/tests/docker-tools-cross.nix
+++ b/nixos/tests/docker-tools-cross.nix
@@ -7,7 +7,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
 let
 
   remoteSystem =
-    if pkgs.system == "aarch64-linux"
+    if pkgs.stdenv.hostPlatform.system == "aarch64-linux"
     then "x86_64-linux"
     else "aarch64-linux";
 
@@ -18,7 +18,7 @@ let
 
     # NOTE: Since this file can't control where the test will be _run_ we don't
     #       cross-compile _to_ a different system but _from_ a different system
-    crossSystem = pkgs.system;
+    crossSystem = pkgs.stdenv.hostPlatform.system;
   };
 
   hello1 = remoteCrossPkgs.dockerTools.buildImage {