cross/tests: Use `crossPkgs.runCommand` so we have `strictDeps`

+1 -1
+1 -1
pkgs/test/cross/default.nix
··· 13 compareTest = { emulator, pkgFun, hostPkgs, crossPkgs, exec, args ? [] }: let 14 pkgName = (pkgFun hostPkgs).name; 15 args' = lib.concatStringsSep " " args; 16 - in pkgs.runCommand "test-${pkgName}-${crossPkgs.hostPlatform.config}" { 17 nativeBuildInputs = [ pkgs.dos2unix ]; 18 } '' 19 # Just in case we are using wine, get rid of that annoying extra
··· 13 compareTest = { emulator, pkgFun, hostPkgs, crossPkgs, exec, args ? [] }: let 14 pkgName = (pkgFun hostPkgs).name; 15 args' = lib.concatStringsSep " " args; 16 + in crossPkgs.runCommand "test-${pkgName}-${crossPkgs.hostPlatform.config}" { 17 nativeBuildInputs = [ pkgs.dos2unix ]; 18 } '' 19 # Just in case we are using wine, get rid of that annoying extra