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 'datomic-pro.tar.gz'10 whose name attribute is located at «github:NixOS/nixpkgs/bd0ff2d3eac24699c3664d5966b9ef36f388e2ca?narHash=sha256-q8yYEC5f1mFlQO9RGna4LTc9QrcvWunX6FYp83munkQ%3D»/pkgs/stdenv/generic/make-derivation.nix:647:111112 … while evaluating attribute 'buildCommand' of derivation 'datomic-pro.tar.gz'13 at «github:NixOS/nixpkgs/bd0ff2d3eac24699c3664d5966b9ef36f388e2ca?narHash=sha256-q8yYEC5f1mFlQO9RGna4LTc9QrcvWunX6FYp83munkQ%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 'sqlite-jdbc-3.49.1.0' in /nix/store/vlq3lnsh2xij0d9blab16pq0sr09z4nl-source/pkgs/by-name/sq/sqlite-jdbc/package.nix:24 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.