flake.nix: fix use of clang in devshell
This commit is contained in:
@@ -9,9 +9,9 @@
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
inherit (pkgs) lib;
|
||||
in {
|
||||
devShells.${system}.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
clang
|
||||
devShells.${system}.default = pkgs.mkShell.override { stdenv = pkgs.clangStdenv; } {
|
||||
packages = with pkgs; [
|
||||
clang-tools
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user