rubyfmt: mark as broken

This commit is contained in:
Gaetan Lepage 2024-06-18 10:51:35 +02:00
parent f5263306d8
commit 483495d01f

View File

@ -76,10 +76,12 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/fables-tales/rubyfmt";
license = licenses.mit;
maintainers = with maintainers; [ bobvanderlinden ];
# = note: Undefined symbols for architecture x86_64:
# "_utimensat", referenced from:
# _utime_internal in librubyfmt-3c969812b3b27083.rlib(file.o)
broken = stdenv.isDarwin && stdenv.isx86_64;
# https://github.com/NixOS/nixpkgs/issues/320722
broken = true
# = note: Undefined symbols for architecture x86_64:
# "_utimensat", referenced from:
# _utime_internal in librubyfmt-3c969812b3b27083.rlib(file.o)
|| stdenv.isDarwin && stdenv.isx86_64;
mainProgram = "rubyfmt";
};
}