1error:2 … while calling the 'derivationStrict' builtin3 at «nix-internal»/derivation-internal.nix:37:12:4 36|5 37| strict = derivationStrict drvAttrs;6 | ^7 38|89 … while evaluating derivation 'nixbot-tests'10 whose name attribute is located at «git+https://github.com/NixOS/nixpkgs?ref=nixos-unstable-small&rev=00fa9a692bafc08a86061886f888b843bf7fbdb0&shallow=1»/pkgs/stdenv/generic/make-derivation.nix:651:111112 … while evaluating attribute 'propagatedBuildInputs' of derivation 'nixbot-tests'13 at «git+https://github.com/NixOS/nixpkgs?ref=nixos-unstable-small&rev=00fa9a692bafc08a86061886f888b843bf7fbdb0&shallow=1»/pkgs/stdenv/generic/make-derivation.nix:729:11:14 728| depsHostHostPropagated = propagatedHostHostOutputs;15 729| propagatedBuildInputs = propagatedHostTargetOutputs;16 | ^17 730| depsTargetTargetPropagated = propagatedTargetTargetOutputs;1819 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021 error: Refusing to evaluate package 'bubblewrap-0.11.2' in /nix/store/jf3f0q6jjl8a1wbcicf07cmn09fayc27-source/pkgs/by-name/bu/bubblewrap/package.nix:55 because it is not available on the requested hostPlatform:22 hostPlatform.system = "aarch64-darwin"23 package.meta.platforms = [24 "aarch64-linux"25 "arc-linux"26 "armv5tel-linux"27 "armv6l-linux"28 "armv7a-linux"29 "armv7l-linux"30 "i686-linux"31 "loongarch64-linux"32 "m68k-linux"33 "sh4-linux"34 "microblaze-linux"35 "microblazeel-linux"36 "mips-linux"37 "mips64-linux"38 "mips64el-linux"39 "mipsel-linux"40 "powerpc-linux"41 "powerpc64-linux"42 "powerpc64le-linux"43 "riscv32-linux"44 "riscv64-linux"45 "s390-linux"46 "s390x-linux"47 "x86_64-linux"48 ]49 package.meta.badPlatforms = [ ]5051 a) To temporarily allow packages that are unsupported for this system, you can use an environment variable52 for a single invocation of the nix tools.5354 $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=15556 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,57 then pass `--impure` in order to allow use of environment variables.5859 b) For `nixos-rebuild` you can set60 { nixpkgs.config.allowUnsupportedSystem = true; }61 in configuration.nix to override this.6263 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add64 { allowUnsupportedSystem = true; }65 to ~/.config/nixpkgs/config.nix.