tests/plugins/efml-configs: disable rustfmt on x86_64-darwin

https://github.com/NixOS/nixpkgs/pull/427702
This commit is contained in:
Gaetan Lepage 2025-07-25 18:17:39 +02:00 committed by Gaétan Lepage
parent dd73afe9c6
commit 9c19892455

View file

@ -53,6 +53,9 @@
"bashate" "bashate"
] ]
++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [ ++ lib.optionals (hostPlatform.isDarwin && hostPlatform.isx86_64) [
# TODO: 2025-07-25 rustfmt is broken (https://github.com/NixOS/nixpkgs/pull/427702)
"rustfmt"
# 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