mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
tests/efmls-configs: disable bashate on aarch64-darwin (broken package)
This commit is contained in:
parent
3ba96f1934
commit
1ca0ec3d79
1 changed files with 8 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (pkgs.stdenv.hostPlatform) system;
|
inherit (pkgs.stdenv) hostPlatform;
|
||||||
inherit (options.plugins.efmls-configs) setup;
|
inherit (options.plugins.efmls-configs) setup;
|
||||||
|
|
||||||
# toolOptions is an attrsets of the form:
|
# toolOptions is an attrsets of the form:
|
||||||
|
@ -23,13 +23,18 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
brokenTools =
|
brokenTools =
|
||||||
lib.optionals pkgs.stdenv.isDarwin [
|
lib.optionals hostPlatform.isDarwin [
|
||||||
# As of 2024-01-04, texliveMedium is broken on darwin
|
# As of 2024-01-04, texliveMedium is broken on darwin
|
||||||
# TODO: re-enable those tests when fixed
|
# TODO: re-enable those tests when fixed
|
||||||
"chktex"
|
"chktex"
|
||||||
"latexindent"
|
"latexindent"
|
||||||
]
|
]
|
||||||
++ lib.optionals (system == "x86_64-darwin") [
|
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isAarch64) [
|
||||||
|
# As of 2025-03-18, several python311Packages.* dependencies of bashate fail on aarch64-darwin
|
||||||
|
# TODO: re-enable this test when fixed
|
||||||
|
"bashate"
|
||||||
|
]
|
||||||
|
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [
|
||||||
# As of 2024-07-31, dmd is broken on x86_64-darwin
|
# As of 2024-07-31, dmd is broken on x86_64-darwin
|
||||||
# https://github.com/NixOS/nixpkgs/pull/331373
|
# https://github.com/NixOS/nixpkgs/pull/331373
|
||||||
# TODO: re-enable this test when fixed
|
# TODO: re-enable this test when fixed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue