SimpleEngine/shell.nix

18 lines
272 B
Nix
Raw Normal View History

2022-09-16 15:14:38 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs; [
gdb
lldb
cmake
pkg-config
ninja
glew
glfw
glm
2022-09-22 02:52:06 +00:00
assimp
2022-10-28 22:49:29 +00:00
spdlog
bullet
2022-09-16 15:14:38 +00:00
];
}