SimpleEngine/shell.nix

21 lines
325 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
rttr
lua5_4
(callPackage ./sol2.nix { })
2022-09-16 15:14:38 +00:00
];
}