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 'locker-omits-bb-prepare-without-bb-edn'10 whose name attribute is located at «github:NixOS/nixpkgs/8c3cede7ddc26bd659d2d383b5610efbd2c7a16e?narHash=sha256-rppURzHviaQN131F%2BnLiLdGfcb0uCd9gGP0E5%2Biw9MI%3D»/pkgs/stdenv/generic/make-derivation.nix:651:111112 … while evaluating attribute 'buildCommand' of derivation 'locker-omits-bb-prepare-without-bb-edn'13 at «github:NixOS/nixpkgs/8c3cede7ddc26bd659d2d383b5610efbd2c7a16e?narHash=sha256-rppURzHviaQN131F%2BnLiLdGfcb0uCd9gGP0E5%2Biw9MI%3D»/pkgs/build-support/trivial-builders/default.nix:81:17:14 80| enableParallelBuilding = true;15 81| inherit buildCommand name;16 | ^17 82| passAsFile = [ "buildCommand" ] ++ (derivationArgs.passAsFile or [ ]);1819 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021 error: Refusing to evaluate package 'babashka-1.12.218' in /nix/store/kxf3k5sdq5cbs13sm9w109p5m9lyzh7x-source/pkgs/by-name/ba/babashka-unwrapped/package.nix:76 because it is not available on the requested hostPlatform:22 hostPlatform.system = "x86_64-darwin"23 package.meta.platforms = [24 "aarch64-darwin"25 "aarch64-linux"26 "x86_64-linux"27 ]28 package.meta.badPlatforms = [ ]2930 a) To temporarily allow packages that are unsupported for this system, you can use an environment variable31 for a single invocation of the nix tools.3233 $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=13435 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,36 then pass `--impure` in order to allow use of environment variables.3738 b) For `nixos-rebuild` you can set39 { nixpkgs.config.allowUnsupportedSystem = true; }40 in configuration.nix to override this.4142 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add43 { allowUnsupportedSystem = true; }44 to ~/.config/nixpkgs/config.nix.