1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-21 09:49:41 +01:00

tests: disable all tests depending on swift

https://github.com/NixOS/nixpkgs/issues/461474
This commit is contained in:
Gaetan Lepage 2025-11-15 18:08:46 +01:00 committed by Gaétan Lepage
parent 11ea1378dd
commit b1c9ab7399
4 changed files with 20 additions and 2 deletions

View file

@ -11,8 +11,12 @@ rec {
};
formatter-packages = {
swift_format = if !stdenv.isDarwin then sType.darwinOnly else swift-format;
swiftlint = if !stdenv.isDarwin then sType.darwinOnly else swiftlint;
# 2025-11-15 dependency swift is broken
# https://github.com/NixOS/nixpkgs/issues/461474
swift = sType.broken;
swift_format = sType.broken;
swiftformat = sType.broken;
swiftlint = sType.broken;
# 2025-10-12 build failure on Darwin
smlfmt = if stdenv.isDarwin then sType.broken else smlfmt;