1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 06:31:14 +02:00

Merge pull request #7433 from yorickvP/improv-onboarding

Improve hacking.md and add clangd+bear to devshell
This commit is contained in:
Théophane Hufschmitt 2023-02-20 10:50:08 +01:00 committed by GitHub
commit 9a3f66d9d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 139 additions and 33 deletions

View file

@ -703,7 +703,10 @@
outputs = [ "out" "dev" "doc" ];
nativeBuildInputs = nativeBuildDeps;
nativeBuildInputs = nativeBuildDeps
++ (lib.optionals
nixpkgsFor.${system}.${stdenv}.cc.isClang
[ bear clang-tools ]);
buildInputs = buildDeps ++ propagatedDeps ++ awsDeps;
inherit configureFlags;