with import <nixpkgs> {};
mkShell {
buildInputs = [
gdb # required for rust-gdb
ministat # profiling summary statistics
rustup
rust-analyzer
];
# required for opengl
LD_LIBRARY_PATH = lib.makeLibraryPath [
libglvnd
xorg.libX11
xorg.libXcursor
xorg.libXi
xorg.libXrandr
libxkbcommon
];
}