libunwind: remove incorrect badPlatforms (#286560)

It is unclear what platforms are actually meant to be unsupported, but some platforms are included in this badPlatforms pattern even though they work, e.g. armv7l-unknown-linux-musleabihf.
Actually unsupported platforms / broken builds can be added again in a dedicated list.

authored by Yureka and committed by GitHub b2b2c220 e9b728e4

-12
-12
pkgs/development/libraries/libunwind/default.nix
··· 45 45 maintainers = with maintainers; [ orivej ]; 46 46 # https://github.com/libunwind/libunwind#libunwind 47 47 platforms = [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-freebsd13" "i686-linux" "loongarch64-linux" "mips64el-linux" "mipsel-linux" "powerpc64-linux" "powerpc64le-linux" "riscv64-linux" "s390x-linux" "x86_64-freebsd13" "x86_64-linux" "x86_64-solaris" ]; 48 - # libunwind relies on getcontext/setcontext, 49 - # and only has a musl implementation for some platforms 50 - # https://github.com/libunwind/libunwind/issues/33 51 - # https://github.com/libunwind/libunwind/issues/69 52 - badPlatforms = [ { 53 - isAarch64 = false; 54 - isRiscV64 = false; 55 - isS390x = false; 56 - isx86_64 = false; 57 - isMusl = true; 58 - parsed = {}; 59 - } ]; 60 48 license = licenses.mit; 61 49 }; 62 50 }