Use LLVM 20 in shell.nix

This commit is contained in:
teapo
2025-03-28 18:38:08 +01:00
parent a9d073e0bb
commit 73c3e60ce5
+3 -3
View File
@@ -4,9 +4,9 @@ pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
git git
which which
clang_18 clang_20
llvmPackages_18.llvm llvmPackages_20.llvm
llvmPackages_18.bintools llvmPackages_20.bintools
]; ];
shellHook="CXX=clang++"; shellHook="CXX=clang++";
} }