switch nixpkgs version
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
description = "Build Project Archimedes";
|
description = "Build Project Archimedes";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||||
imgui = {
|
imgui = {
|
||||||
url = "github:ocornut/imgui?ref=docking";
|
url = "github:ocornut/imgui?ref=docking";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
#include "App.h"
|
#include "App.h"
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
|
|
||||||
|
if(!glfwInit()) {
|
||||||
|
std::cout << "Still no glfw!\n";
|
||||||
|
std::abort();
|
||||||
|
}
|
||||||
App app(argc, argv);
|
App app(argc, argv);
|
||||||
app.run();
|
app.run();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user