From a57f8930fd35dd235dc806c20a6538e4f11039a0 Mon Sep 17 00:00:00 2001 From: Fernando Rodrigues Date: Mon, 12 May 2025 21:11:45 -0300 Subject: [PATCH] htcondor: mark as broken It's been broken for a while, and the maintainer doesn't seem to have touched the package since it was added. I've tried updating to 24.7.3, with no success. I'm marking it now because it's in Xen's nixpkgs-review reverse-dependency path, and I don't care to see failing packages there. Signed-off-by: Fernando Rodrigues --- pkgs/by-name/ht/htcondor/package.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ht/htcondor/package.nix b/pkgs/by-name/ht/htcondor/package.nix index 64cfb8bb516e..1474ea8dfa38 100644 --- a/pkgs/by-name/ht/htcondor/package.nix +++ b/pkgs/by-name/ht/htcondor/package.nix @@ -62,7 +62,8 @@ stdenv.mkDerivation rec { platforms = platforms.linux; license = licenses.asl20; maintainers = with maintainers; [ evey ]; - # cannot find -lpthread: No such file or directory - broken = stdenv.hostPlatform.isAarch64; + # On Aarch64: ld: cannot find -lpthread: No such file or directory + # On x86_64: ld: cannot find -ldl: No such file or directory + broken = true; }; }