flake.nix: fix use of clang in devshell

This commit is contained in:
2026-05-12 20:36:28 +09:00
parent b8c8d886ab
commit b4b8d6bf89
+3 -3
View File
@@ -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
];
};