switch nixpkgs version

This commit is contained in:
2025-03-17 10:37:05 -05:00
parent 663e9b575a
commit 5f0a8e0d05
2 changed files with 6 additions and 1 deletions

View File

@@ -2,6 +2,11 @@
#include "App.h"
int main(int argc, char* argv[]) {
if(!glfwInit()) {
std::cout << "Still no glfw!\n";
std::abort();
}
App app(argc, argv);
app.run();
}