From 51fe03f615c42a07f5dd31f0287cf7105d22c2cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Ol=C3=A1h?= Date: Sun, 19 Jul 2026 11:36:13 +0200 Subject: [PATCH] nix: set main program to coli This is the higher-level user interface, which should be the main entry point to the binary, not the engine itself. The engine is still available. --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index df83d4c..17f8a36 100644 --- a/flake.nix +++ b/flake.nix @@ -99,7 +99,7 @@ homepage = "https://github.com/JustVugg/colibri"; license = licenses.asl20; platforms = with platforms; linux ++ darwin; - mainProgram = "glm"; + mainProgram = "coli"; }; }; in { @@ -113,9 +113,9 @@ type = "app"; program = pkgs.lib.getExe colibri; }; - coli = { + glm = { type = "app"; - program = pkgs.lib.getExe' colibri "coli"; + program = "${colibri}/share/colibri/glm"; }; };