feat(raytracer): add native rt functions to lisp

This commit is contained in:
2024-11-28 01:57:40 +01:00
parent 4b227fdd28
commit 6a3348d727
11 changed files with 554 additions and 32 deletions

View File

@@ -63,9 +63,9 @@
};
in rec {
apps = rec {
demo = {
lisp_demo = {
type = "app";
program = "${packages.default}/bin/demo";
program = "${packages.default}/bin/lisp_demo";
};
repl = {
type = "app";
@@ -75,7 +75,11 @@
type = "app";
program = "${packages.default}/bin/rt_demo";
};
default = demo;
rt_demo_lisp = {
type = "app";
program = "${packages.default}/bin/rt_demo_lisp";
};
default = rt_demo_lisp;
};
packages = rec {
lispers = cargoNix.rootCrate.build;