cmake has a check for clang and therefore override the stdenv.

This commit is contained in:
Connor Garey 2026-03-27 23:12:44 +00:00
parent dc22a4af87
commit 84ee60befa

View File

@ -10,7 +10,7 @@
pkgsLinux = nixpkgs.legacyPackages.x86_64-linux;
in
{
devShells.x86_64-linux.default = pkgsLinux.mkShell {
devShells.x86_64-linux.default = pkgsLinux.mkShell.override {stdenv = pkgsLinux.clangStdenv; } {
packages = with pkgsLinux; [
clang-tools
cmake