OpenGL/shell.nix
2025-01-07 17:09:00 -05:00

16 lines
273 B
Nix

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