Skip to content

Commit

Permalink
Hopefully this fixes the error
Browse files Browse the repository at this point in the history
https://gist.github.com/GrahamcOfBorg/6627bea2a8da597c22b94008d04f29e2

>        error: Unsupported guest system aarch64-linux for host x86_64-darwin, supported: x86_64-linux
  • Loading branch information
Artturin committed Dec 15, 2024
1 parent 4415c7e commit fd40d60
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pkgs/top-level/impure.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ assert args ? system -> !(args ? localSystem);

import ./. (builtins.removeAttrs args [ "system" ] // {
inherit config overlays localSystem;
} // (if ((localSystem.system or localSystem) == "x86_64-linux" || (localSystem.system or localSystem) == "aarch64-linux") then {
} // (if ((localSystem.system or localSystem) == "x86_64-linux") then {
crossSystem = { config = "aarch64-unknown-linux-gnu"; };
} else {}) )
2 changes: 0 additions & 2 deletions pkgs/top-level/release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ let
jobs.vim.x86_64-darwin
jobs.inkscape.x86_64-darwin
jobs.qt5.qtmultimedia.x86_64-darwin
jobs.darwin.linux-builder.x86_64-darwin
/*
jobs.tests.cc-wrapper.default.x86_64-darwin
jobs.tests.cc-wrapper.llvmPackages.clang.x86_64-darwin
Expand All @@ -270,7 +269,6 @@ let
jobs.vim.aarch64-darwin
jobs.inkscape.aarch64-darwin
jobs.qt5.qtmultimedia.aarch64-darwin
jobs.darwin.linux-builder.aarch64-darwin
/* consider adding tests, as suggested above for x86_64-darwin */
];
};
Expand Down

0 comments on commit fd40d60

Please sign in to comment.