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.
This commit is contained in:
Attila Oláh
2026-07-19 11:36:13 +02:00
parent da97f0dbf1
commit 51fe03f615
+3 -3
View File
@@ -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";
};
};