oden/third-party/vendor/khronos-egl/shell.nix
2024-03-08 11:03:01 -08:00

10 lines
No EOL
150 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.gcc
pkgs.libGL
pkgs.pkg-config
];
LD_LIBRARY_PATH="${pkgs.libGL}/lib";
}