this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

c: clang -> llvmPackages_latest.clang

Doing just `clang` causes `clangd` to be unable to find C headers like
`stdio.h`

yemou 4de2071e a60b9480

+1 -1
+1 -1
c/flake.nix
··· 15 15 devShells = forSystems (pkgs: { 16 16 default = pkgs.mkShell { 17 17 buildInputs = with pkgs; [ 18 - clang 19 18 clang-tools 19 + llvmPackages_latest.clang 20 20 ]; 21 21 }; 22 22 });