1error:2 … while evaluating the attribute 'drvPath'3 at «github:NixOS/nixpkgs/6368eda62c9775c38ef7f714b2555a741c20c72d?narHash=sha256-yKB4G6cKsQsWN7M6rZGk6gkJPDNPIzT05y4qzRyCDlI%3D»/lib/customisation.nix:445:7:4 444| // {5 445| drvPath =6 | ^7 446| assert condition;89 … while calling the 'derivationStrict' builtin10 at «nix-internal»/derivation-internal.nix:37:12:11 36|12 37| strict = derivationStrict drvAttrs;13 | ^14 38|1516 … while evaluating the option `driverConfiguration.test_script':1718 … while evaluating definitions from `/nix/store/sniaw7fg1qz1ky7k9p44lnxfbjsbg33n-source/nixos/lib/testing/driver-configuration.nix':1920 … while evaluating the option `testScriptString':2122 … while evaluating definitions from `/nix/store/sniaw7fg1qz1ky7k9p44lnxfbjsbg33n-source/nixos/lib/testing/testScript.nix':2324 … while evaluating the option `testScript':2526 … while evaluating definitions from `makeTest parameters':2728 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2930 error: Refusing to evaluate package 'babashka-1.12.217' in /nix/store/sniaw7fg1qz1ky7k9p44lnxfbjsbg33n-source/pkgs/development/interpreters/babashka/default.nix:76 because it is not available on the requested hostPlatform:31 hostPlatform.system = "x86_64-darwin"32 package.meta.platforms = [33 "aarch64-darwin"34 "aarch64-linux"35 "x86_64-linux"36 ]37 package.meta.badPlatforms = [ ]3839 a) To temporarily allow packages that are unsupported for this system, you can use an environment variable40 for a single invocation of the nix tools.4142 $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=14344 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,45 then pass `--impure` in order to allow use of environment variables.4647 b) For `nixos-rebuild` you can set48 { nixpkgs.config.allowUnsupportedSystem = true; }49 in configuration.nix to override this.5051 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add52 { allowUnsupportedSystem = true; }53 to ~/.config/nixpkgs/config.nix.