From ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Wed, 20 Sep 2023 23:02:46 -0300 Subject: [PATCH] bmake: more accurate metainfo about brokenness --- pkgs/by-name/bm/bmake/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/bm/bmake/package.nix b/pkgs/by-name/bm/bmake/package.nix index 087fb339f329..2626c45f0215 100644 --- a/pkgs/by-name/bm/bmake/package.nix +++ b/pkgs/by-name/bm/bmake/package.nix @@ -110,7 +110,9 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "bmake"; maintainers = with lib.maintainers; [ thoughtpolice AndersonTorres ]; platforms = lib.platforms.unix; - broken = stdenv.isAarch64; # failure on gnulib-tests + # ofborg: x86_64-linux builds the musl package, aarch64-linux doesn't + broken = stdenv.targetPlatform.isMusl && stdenv.buildPlatform.isAarch64; }; }) # TODO: report the quirks and patches to bmake devteam (especially the Musl one) +# TODO: investigate Musl support