summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-20 23:02:46 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-22 01:38:23 -0300
commitae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c (patch)
tree11c14e0ac47b7b839745d959cdcf05fcfe952110 /pkgs/by-name
parentdb00521fb5fd08d325fe20b9cb54f336f38190b3 (diff)
downloadnixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar.gz
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar.bz2
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar.lz
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar.xz
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.tar.zst
nixpkgs-ae8fff7469df9bb6f6c9a544a7a4b51c2bf2972c.zip
bmake: more accurate metainfo about brokenness
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/bm/bmake/package.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/by-name/bm/bmake/package.nix b/pkgs/by-name/bm/bmake/package.nix
index 087fb339f32..2626c45f021 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