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,7 +2,7 @@
description = "Build Project Archimedes";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
imgui = {
url = "github:ocornut/imgui?ref=docking";
flake = false;

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();
}