diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -701,7 +701,10 @@ outputs = [ "out" "dev" "doc" ]; - nativeBuildInputs = nativeBuildDeps ++ [ clang-tools bear ]; + nativeBuildInputs = nativeBuildDeps + ++ (lib.optionals + nixpkgsFor.${system}.${stdenv}.cc.isClang + [ bear clang-tools ]); buildInputs = buildDeps ++ propagatedDeps ++ awsDeps; inherit configureFlags; |