OpenGL/shell.nix
2024-12-06 12:12:11 -05:00

16 lines
246 B
Nix

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