llvm: bump min version for musl to 11+

Older LLVM versions are not building with musl right now, while 11+
works fine.

Yureka 67ef64c5 96a99266

+4 -1
+4 -1
pkgs/top-level/all-packages.nix
··· 12266 12266 /**/ if platform.isDarwin then (if platform.isAarch64 then 11 else 7) 12267 12267 else if platform.isFreeBSD then 7 12268 12268 else if platform.isAndroid then 12 12269 - else if platform.isLinux then (if platform.isRiscV then 11 else 7) 12269 + else if platform.isLinux then 12270 + /**/ if platform.isRiscV then 11 12271 + else if platform.isMusl then 11 12272 + else 7 12270 12273 else if platform.isWasm then 8 12271 12274 else latest_version; 12272 12275 # We take the "max of the mins". Why? Since those are lower bounds of the