use perspective projection
This commit is contained in:
@@ -2,28 +2,57 @@
|
||||
|
||||
perSystem = { config, system, pkgs, self', inputs', ... }: {
|
||||
|
||||
devShells.default = pkgs.mkShellNoCC {
|
||||
devShells = {
|
||||
bash = pkgs.mkShellNoCC {
|
||||
|
||||
packages = with pkgs; [
|
||||
clang
|
||||
packages = with pkgs; [
|
||||
clang
|
||||
|
||||
glfw
|
||||
glew
|
||||
glfw
|
||||
glew
|
||||
|
||||
sdl3
|
||||
sdl3
|
||||
|
||||
curl
|
||||
glm
|
||||
nlohmann_json
|
||||
stb
|
||||
curl
|
||||
glm
|
||||
nlohmann_json
|
||||
stb
|
||||
|
||||
gamenetworkingsockets
|
||||
gamenetworkingsockets
|
||||
|
||||
];
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
shellHook = ''
|
||||
'';
|
||||
|
||||
};
|
||||
|
||||
zsh = pkgs.mkShellNoCC {
|
||||
|
||||
packages = with pkgs; [
|
||||
clang
|
||||
|
||||
glfw
|
||||
glew
|
||||
|
||||
sdl3
|
||||
|
||||
curl
|
||||
glm
|
||||
nlohmann_json
|
||||
stb
|
||||
|
||||
gamenetworkingsockets
|
||||
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
exec zsh
|
||||
'';
|
||||
|
||||
};
|
||||
|
||||
default = self'.devShells.bash;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user