30 lines
497 B
Nix
30 lines
497 B
Nix
{ ... }: {
|
|
|
|
perSystem = { config, system, pkgs, self', inputs', ... }: {
|
|
|
|
devShells.default = pkgs.mkShellNoCC {
|
|
|
|
packages = with pkgs; [
|
|
clang
|
|
|
|
glfw
|
|
glew
|
|
|
|
sdl3
|
|
|
|
curl
|
|
glm
|
|
nlohmann_json
|
|
stb
|
|
|
|
gamenetworkingsockets
|
|
|
|
];
|
|
|
|
shellHook = ''
|
|
'';
|
|
|
|
};
|
|
};
|
|
}
|