GameOfLife/shell.nix
2025-05-03 16:50:20 -04:00

17 lines
284 B
Nix

{pkgs ? import <nixpkgs> {}}:
with pkgs;
mkShell rec {
packages = [gdb clang-tools];
nativeBuildInputs = [
pkg-config
gcc
gnumake
];
buildInputs = [
glfw3
glm
glew
];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}