foot: fix evaluation with clang stdenvs

To be able to do LTO with clang we need the LTO-capable llvm-ar from
libllvm.out (== llvmPackages.llvm) which contains a superset of the llvm
bintools. This used to be passed through from stdenv.cc.cc as llvm, but
has been renamed to libllvm in 7869d1654517c028aa76fc1dedc9b5ac301a867a.

llvm-ar would be in stdenv.cc.bintools.bintools provided that we are
using a clang stdenv which uses lld as its linker. In the future we could
thus make this inclusion conditional on stdenv.hostPlatform.linker.

Note that the build of foot.tests still fails, pending resolution of #123361.

Changed files
+3 -1
pkgs
applications
terminal-emulators
+3 -1
pkgs/applications/terminal-emulators/foot/default.nix
···
tllist
wayland-protocols
pkg-config
-
] ++ lib.optional stdenv.cc.isClang stdenv.cc.cc.llvm;
buildInputs = [
fontconfig
···
tllist
wayland-protocols
pkg-config
+
] ++ lib.optionals (compilerName == "clang") [
+
stdenv.cc.cc.libllvm.out
+
];
buildInputs = [
fontconfig