Use clang over gcc in shell.nix

This commit is contained in:
Jeremy Baxter 2023-07-18 10:55:37 +12:00
parent 4b6f9f315e
commit a72a34370c

View file

@ -2,7 +2,7 @@
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
bmake
gcc
clang
readline
];
shellHook = "alias make=bmake";