all-packages: Define LLVM 11 as the default for Darwin

The Darwin stdenv takes some of the llvmPackages from the top-level pkgs
rather than explicitly from `llvmPackages_*`. This means you cannot
simply bump the LLVM version in the stdenv, you have to bump the default
version in all-packages.nix as well.

authored by

toonn and committed by
Jonathan Ringer
96876540 cc767e1d

+1 -1
+1 -1
pkgs/top-level/all-packages.nix
··· 12500 12500 # This returns the minimum supported version for the platform. The 12501 12501 # assumption is that or any later version is good. 12502 12502 choose = platform: 12503 - /**/ if platform.isDarwin then (if platform.isAarch64 then 11 else 7) 12503 + /**/ if platform.isDarwin then 11 12504 12504 else if platform.isFreeBSD then 7 12505 12505 else if platform.isAndroid then 12 12506 12506 else if platform.isLinux then