From f0f94e782353c369dc77b1dfd4c1af9704fc70e8 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Sat, 13 Jan 2024 09:02:11 -0300 Subject: [PATCH] pkgsMusl.bun: mark broken for musl Tracking issue: https://github.com/NixOS/nixpkgs/issues/280716 --- pkgs/development/web/bun/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/web/bun/default.nix b/pkgs/development/web/bun/default.nix index ed516df42c3c..2f492ed603f5 100644 --- a/pkgs/development/web/bun/default.nix +++ b/pkgs/development/web/bun/default.nix @@ -94,5 +94,8 @@ stdenvNoCC.mkDerivation rec { ]; maintainers = with maintainers; [ DAlperin jk thilobillerbeck cdmistman coffeeispower ]; platforms = builtins.attrNames passthru.sources; + # Broken for Musl at 2024-01-13, tracking issue: + # https://github.com/NixOS/nixpkgs/issues/280716 + broken = stdenvNoCC.hostPlatform.isMusl; }; }