nixbot

builds

failed eval aarch64-darwin.package-dishvim build #3 · raw ·

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 'nvf-with-helpers'10         whose name attribute is located at «https://releases.nixos.org/nixpkgs/nixpkgs-26.11pre1033616.6cdc7fc76e8b/nixexprs.tar.zst?narHash=sha256-w9ktuEgDIWGsX58tR3nI5HBGNy1idO8KY4urO3msko0%3D»/pkgs/stdenv/generic/make-derivation.nix:651:111112       … while evaluating attribute 'paths' of derivation 'nvf-with-helpers'13         at «https://releases.nixos.org/nixpkgs/nixpkgs-26.11pre1033616.6cdc7fc76e8b/nixexprs.tar.zst?narHash=sha256-w9ktuEgDIWGsX58tR3nI5HBGNy1idO8KY4urO3msko0%3D»/pkgs/build-support/trivial-builders/default.nix:579:9:14          578|         ];15          579|         paths = mapPaths (path: "${path}${stripPrefix}") paths;16             |         ^17          580|         buildCommand = ''1819       (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021       error: Refusing to evaluate package 'wl-clipboard-rs-0.9.3' in /nix/store/r66anqkjwpgyxqlkjpi4rwld2jxkyvm6-source/pkgs/by-name/wl/wl-clipboard-rs/package.nix:75 because it is not available on the requested hostPlatform:22         hostPlatform.system = "aarch64-darwin"23         package.meta.platforms = [24           "aarch64-linux"25           "armv6l-linux"26           "armv7l-linux"27           "i686-linux"28           "loongarch64-linux"29           "powerpc-linux"30           "powerpc64-linux"31           "powerpc64le-linux"32           "riscv64-linux"33           "s390x-linux"34           "x86_64-linux"35           "armv5tel-linux"36           "armv7a-linux"37           "m68k-linux"38           "mips-linux"39           "mips64-linux"40           "mipsel-linux"41           "mips64el-linux"42           "riscv32-linux"43         ]44         package.meta.badPlatforms = [45           {46             abi = {47               abi = "n32";48             };49             cpu = {50               bits = 64;51               family = "mips";52             };53           }54         ]5556       a) To temporarily allow packages that are unsupported for this system, you can use an environment variable57          for a single invocation of the nix tools.5859            $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=16061          Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,62                then pass `--impure` in order to allow use of environment variables.6364       b) For `nixos-rebuild` you can set65         { nixpkgs.config.allowUnsupportedSystem = true; }66       in configuration.nix to override this.6768       c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add69         { allowUnsupportedSystem = true; }70       to ~/.config/nixpkgs/config.nix.